home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
a_utils
/
ffccflow
/
ffccflow.lha
/
ffccc+flow
/
flow
/
search.for
< prev
next >
Wrap
Text File
|
1992-07-31
|
312b
|
15 lines
INTEGER FUNCTION SEARCH(CNAM)
C! Finds the index for a routine name
INCLUDE 'params.h'
INCLUDE 'tables.h'
CHARACTER*(*) CNAM
C
SEARCH = 0
DO 1 I=1,NPROC
IF(CNAM.EQ.PROCED_NAME(I)) THEN
SEARCH = I
RETURN
ENDIF
1 CONTINUE
END